-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
introduce property_checker_resultt
#651
Conversation
90c7354
to
c3e78b3
Compare
src/ebmc/property_checker.h
Outdated
@@ -12,6 +12,13 @@ Author: Daniel Kroening, [email protected] | |||
#include "ebmc_properties.h" | |||
#include "transition_system.h" | |||
|
|||
enum class property_checker_resultt | |||
{ | |||
REPORT_RESULT, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am struggling to understand what this one is about? Or, rather, why is "SUCCESS" not a "result?"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not a verification result -- rename REPORT_RESULT -> REPORT_VERIFICATION_RESULT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or simply VERIFICATION_RESULT
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VERIFICATION_RESULT
works for me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Also, is there a case for re-using |
It will move into this direction; but there simply aren't any goto programs. |
This introduces a type for the result from an engine, as a replacement for 'int'.
c3e78b3
to
7a255f6
Compare
This introduces a type for the result from an engine, as a replacement for
int
.